* {
    border: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.dataGridView {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.dataGridViewTitulos {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    background-color: #138;
    color: #fff;
    border-radius: 5px 5px 0px 0px;
}

.dataGridViewTitulos div,
.dataGridViewLinha div {
    padding: 5px;
}

.dataGridViewDados {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.dataGridViewLinha {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.dataGridViewLinha:nth-child(odd) {
    background-color: #ddd;
}

.dataGridViewLinha:nth-child(even) {
    background-color: #eee;
}

.dataGridViewLinha:hover {
    background-color: #088 !important;
    cursor: pointer;
    color: #fff !important;
}

.coluna {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.c1 {
    width: 50px;
}

.c2 {
    width: 150px;
}

.c3 {
    width: 150px;
}

.c4 {
    width: 150px;
}

.c5 {
    width: 100px;
    justify-content: space-around !important;
}

/* Modal de view */

.janelaView {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
}

.view {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background-color: #aaa;
    padding: 10px;
    border-radius: 5px;
    width: 500px;
}

.campo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
    width: 500px;
}

.campo input {
    padding: 5px;
    border-radius: 5px;
    width: 95%;
}

.rodape {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

.btn {
    background-color: #480;
    color: #eee;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 0px 5px;
}

.ocultar {
    display: none !important;
}